.foreground-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    opacity:0.8;
    z-index: 1;
    pointer-events: none;
}
.main-logo {
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: auto;
    opacity:1;
    z-index: 2;
    pointer-events: none;
}

.image-container{
    width: 100%;
    height: auto;
    perspective: 1000px;
  }

  h1{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Makes sure it stays in front */
    font-size: 3rem;
    text-align: center;
    margin: 0;
    font-weight: 100;
    font-size:x-large;
    letter-spacing: 25px; 
  }
  h1 .first {
    color: #1f1f1f; /* First color */
  }
  h1 .second {
    color: #ff0000; /* Second color */
  }
  /* Media Queries for smaller devices */
@media (max-width: 768px) {
    .main-logo {
      width: 70%;
    }
    h1{
      font-size: x-large;
      letter-spacing: 10px; 
    }
  }
  
  @media (max-width: 480px) {
    .main-logo {
      width: 80%;
    }
    h1{
      font-size: x-large;
      letter-spacing: 3px; 
    }
  
  }
  